YNQ  YNQ-1.6.2
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
Directory Operations

Functions

NQ_BOOL ccCreateDirectoryA (const NQ_CHAR *pathName)
 
NQ_BOOL ccCreateDirectory (const NQ_WCHAR *pathName)
 
NQ_BOOL ccRemoveDirectoryA (const NQ_CHAR *pathName)
 
NQ_BOOL ccRemoveDirectory (const NQ_WCHAR *pathName)
 

Detailed Description

Function Documentation

NQ_BOOL ccCreateDirectoryA ( const NQ_CHAR pathName)

This function is called by application to create a directory.

Parameters
pathNamePath of the directory to be created
Returns
This function returns TRUE if directory is created successfully or FALSE otherwise. The application can inspect the error code for the failure reason.
Note
This is an ASCII version of ccCreateDirectory()
NQ_BOOL ccCreateDirectory ( const NQ_WCHAR pathName)

This function is called by application to create a directory.

Parameters
pathNamePath of the directory to be created
Returns
This function returns TRUE if directory is created successfully or FALSE otherwise. The application can inspect the error code for the failure reason.
NQ_BOOL ccRemoveDirectoryA ( const NQ_CHAR pathName)

This function is called by application to remove a directory.

Parameters
pathNamePath of the directory to be removed.
Returns
This function returns TRUE if the specified directory is removed successfully or FALSE otherwise. The application can inspect the error code for the failure reason. The directory should be empty, otherwise error condition will occur.
Note
This is an ASCII version of ccRemoveDirectory()
NQ_BOOL ccRemoveDirectory ( const NQ_WCHAR pathName)

This function is called by application to remove a directory.

Parameters
pathNamePath of the directory to be removed.
Returns
This function returns TRUE if the specified directory is removed successfully or FALSE otherwise. The application can inspect the error code for the failure reason. The directory should be empty, otherwise error condition will occur.